home *** CD-ROM | disk | FTP | other *** search
/ Capcom E3 2004 Press CD ~…pcom Sales CD 2004 (USA) / Capcom E3 2004 Press CD (USA).bin / pc / files / aladdin / dmenu_screen.swf / scripts / frame_2 / DoAction.as
Text File  |  2004-04-15  |  462b  |  18 lines

  1. Movieclip.prototype.backUp = function(howManyFrames)
  2. {
  3.    this.createEmptyMovieClip("revController",100);
  4.    this.revController.howMany = howManyFrames;
  5.    this.revController.onEnterFrame = function()
  6.    {
  7.       if(this._parent._currentframe > 1 and this.howMany > 0)
  8.       {
  9.          this._parent.gotoAndStop(this._parent._currentframe - 1);
  10.          this.howMany--;
  11.       }
  12.       else
  13.       {
  14.          this.removeMovieClip();
  15.       }
  16.    };
  17. };
  18.